home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 January / Software of the Month Club 2000 January.iso / pc / Somc.dir / Internal_11_QuitHotspot.ls < prev    next >
Encoding:
Text File  |  1999-09-28  |  199 b   |  16 lines

  1. on mouseUp
  2.   puppetSound(1, "Click")
  3.   go("Quit")
  4.   cursor(0)
  5. end
  6.  
  7. on mouseEnter
  8.   doCursor()
  9.   set the visible of sprite 3 to 1
  10. end
  11.  
  12. on mouseLeave
  13.   cursor(0)
  14.   set the visible of sprite 3 to 0
  15. end
  16.